home *** CD-ROM | disk | FTP | other *** search
/ TestDrive Windows 1993 Fall / TestDrive Windows 1993 Fall.iso / dbase / dtl / dd_apnd.cod < prev    next >
Encoding:
Text File  |  1993-03-09  |  888 b   |  30 lines

  1. //
  2. // Module Name: DD_APND.COD - current (selector name): Menu_Act = 7
  3. // Selectors used : Appnd_from, Appnd_type, For_Expr
  4. // Description: DOC. include file for the APPEND option.
  5. // Syntax     : APPEND FROM <filename> [FOR <condition>]
  6. //                     [TYPE <file type>]
  7. //                     [DELIMITED [WITH BLANK/<delimiter>]]
  8. //
  9. Append Records from {if Appnd_type == 5}Array{else}File{endif} {lower(Appnd_from)}
  10. {if For_Expr || Appnd_type then}
  11. {endofpage();}
  12. Command Options:
  13. { if For_Expr then} FOR {For_Expr}{endif}
  14. { if Appnd_type && Appnd_type != 5 then} Type of file: {endif}\
  15. {  case Appnd_type of}
  16. {  0: // DBF}
  17. {  1:}dBASEII
  18. {  2:}FW2
  19. {  3:}RPD
  20. {  4:}DELIMITED {if Appl_Delim}WITH {Appl_Delim}{endif}
  21. {  5: // ARRAY}
  22. {  6:}SDF
  23. {  7:}DIF
  24. {  8:}SYLK
  25. {  9:}WKS
  26. {  endcase}
  27. // end of if Appnd_type
  28. {endif // if For_Expr}
  29. // EOP DD_APND.COD
  30.